#loader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: white;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.spinner {
  position: relative;
  width: 200px;
  height: 200px;
  animation: spin 2s linear infinite;
}

.orbit-img {
  position: absolute;
  width: 50px;
  height: 50px;
  object-fit: contain;
}

/* Position logos at corners of a square */
.img1 { top: 0; left: 50%; transform: translate(-50%, -50%); }
.img2 { top: 50%; right: 0; transform: translate(50%, -50%); }
.img3 { bottom: 0; left: 50%; transform: translate(-50%, 50%); }
.img4 { top: 50%; left: 0; transform: translate(-50%, -50%); }

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
